home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / close_excp.sql < prev    next >
Text File  |  2000-05-12  |  668b  |  18 lines

  1. /* RCSVER $Id: close_excp.sql,v 1.1 1999-12-02 16:51:35-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        close_excp.sql   
  6. * Date:        08/18/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the close_excp table. This table contains
  9. *        exceptions that can occur during matching.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE close_excp
  13. (
  14.     num    NUMBER(38),    /* Number of this exception */
  15.     descr    VARCHAR2(30),    /* Description */
  16.     CONSTRAINT pk_closeexcp PRIMARY KEY (num)
  17. );
  18.